home *** CD-ROM | disk | FTP | other *** search
/ Aminet 21 / Aminet 21 (1997)(GTI - Schatztruhe)[!][Oct 1997].iso / Aminet / gfx / show / gs_src_gs.lha / gs5.03 / openvms.mak < prev    next >
Text File  |  1997-08-05  |  11KB  |  403 lines

  1. #    Copyright (C) 1997 Aladdin Enterprises. All rights reserved.
  2. # This file is part of Aladdin Ghostscript.
  3. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  4. # or distributor accepts any responsibility for the consequences of using it,
  5. # or for whether it serves any particular purpose or works at all, unless he
  6. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  7. # License (the "License") for full details.
  8. # Every copy of Aladdin Ghostscript must include a copy of the License,
  9. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  10. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  11. # under certain conditions described in the License.  Among other things, the
  12. # License requires that the copyright notice and this notice be preserved on
  13. # all copies.
  14.  
  15. # makefile for OpenVMS VAX and Alpha
  16. #
  17. # Please contact Jim Dunham (dunham@omtool.com) if you have questions.
  18. #
  19. # ------------------------------- Options ------------------------------- #
  20.  
  21. ###### This section is the only part of the file you should need to edit.
  22.  
  23. # on the make command line specify:
  24. #    make -fopenvms.mak "OPENVMS={VAX,ALPHA}" "DECWINDOWS={1.2,<blank>}"
  25.  
  26. # ------ Generic options ------ #
  27.  
  28. # Define the directory that will hold documentation at runtime.
  29.  
  30. GS_DOCDIR=GS_DOC
  31. #GS_DOCDIR=SYS$COMMON:[GS]
  32.  
  33. # Define the default directory/ies for the runtime
  34. # initialization and font files.  Separate multiple directories with ,.
  35.  
  36. GS_LIB_DEFAULT=GS_LIB
  37. #GS_LIB_DEFAULT=SYS$COMMON:[GS],SYS$COMMON:[GS.FONT]
  38.  
  39. # Define whether or not searching for initialization files should always
  40. # look in the current directory first.  This leads to well-known security
  41. # and confusion problems, but users insist on it.
  42. # NOTE: this also affects searching for files named on the command line:
  43. # see the "File searching" section of use.txt for full details.
  44. # Because of this, setting SEARCH_HERE_FIRST to 0 is not recommended.
  45.  
  46. SEARCH_HERE_FIRST=1
  47.  
  48. # Define the name of the interpreter initialization file.
  49. # (There is no reason to change this.)
  50.  
  51. GS_INIT=GS_INIT.PS
  52.  
  53. # Choose generic configuration options.
  54.  
  55. # Setting DEBUG=1 includes debugging features in the code
  56.  
  57. DEBUG=
  58.  
  59. # Setting TDEBUG=1 includes symbol table information for the debugger,
  60. # and also enables stack tracing on failure.
  61.  
  62. TDEBUG=
  63.  
  64. # Setting CDEBUG=1 enables 'C' compiler debugging and turns off optimization
  65. # Code is substantially slower and larger.
  66.  
  67. CDEBUG=
  68.  
  69. # Define the name of the executable file.
  70.  
  71. GS=GS
  72.  
  73. # Define the directory where the IJG JPEG library sources are stored,
  74. # and the major version of the library that is stored there.
  75. # You may need to change this if the IJG library version changes.
  76. # See jpeg.mak for more information.
  77.  
  78. JSRCDIR=[.jpeg-6a]
  79. JVERSION=6
  80.  
  81. # Define the directory where the PNG library sources are stored,
  82. # and the version of the library that is stored there.
  83. # You may need to change this if the libpng version changes.
  84. # See libpng.mak for more information.
  85.  
  86. PSRCDIR=[.libpng-0_96]
  87. PVERSION=96
  88.  
  89. # Define the directory where the zlib sources are stored.
  90. # See zlib.mak for more information.
  91.  
  92. ZSRCDIR=[.zlib-1_0_4]
  93.  
  94. # Note that built-in libpng and zlib aren't available.
  95.  
  96. SHARE_LIBPNG=0
  97. SHARE_ZLIB=0
  98.  
  99. # Define the configuration ID.  Read gs.mak carefully before changing this.
  100.  
  101. CONFIG=
  102.  
  103. # Define the path to X11 include files
  104.  
  105. X_INCLUDE=DECW$$INCLUDE
  106.  
  107. # ------ Platform-specific options ------ #
  108.  
  109. # Define the drive, directory, and compiler name for the 'C' compiler.
  110. # COMP is the full compiler path name.
  111.  
  112. COMP=CC
  113.  
  114. ifdef DEBUG
  115. COMP:=$(COMP)/DEBUG/NOOPTIMIZE
  116. else
  117. COMP:=$(COMP)/NODEBUG/OPTIMIZE
  118. endif
  119.  
  120. ifeq "$(OPENVMS)"    "VAX"
  121. COMP:=$(COMP)/VAXC
  122. else
  123. COMP:=$(COMP)/DECC/PREFIX=ALL/NESTED_INCLUDE=PRIMARY
  124. endif
  125.  
  126. # Define any other compilation flags. 
  127. # Including defines for A4 paper size
  128.  
  129. ifdef A4_PAPER
  130. COMP:=$(COMP)/DEFINE=("A4")
  131. endif
  132.  
  133. # LINK is the full linker path name
  134.  
  135. ifdef LDEBUG
  136. LINKER=LINK/DEBUG/TRACEBACK
  137. else
  138. LINKER=LINK/NODEBUG/NOTRACEBACK
  139. endif
  140.  
  141. # INCDIR contains the include files
  142. INCDIR=
  143.  
  144. # LIBDIR contains the library files
  145. LIBDIR=
  146.  
  147. # ------ Devices and features ------ #
  148.  
  149. # Choose the device(s) to include.  See devs.mak for details.
  150.  
  151. DEVICE_DEVS=x11.dev x11alpha.dev x11cmyk.dev x11mono.dev
  152. DEVICE_DEVS3=deskjet.dev djet500.dev laserjet.dev ljetplus.dev ljet2p.dev ljet3.dev ljet4.dev
  153. DEVICE_DEVS4=cdeskjet.dev cdjcolor.dev cdjmono.dev cdj550.dev pj.dev pjxl.dev pjxl300.dev
  154. DEVICE_DEVS5=uniprint.dev
  155. DEVICE_DEVS6=bj10e.dev bj200.dev bjc600.dev bjc800.dev
  156. DEVICE_DEVS7=faxg3.dev faxg32d.dev faxg4.dev
  157. DEVICE_DEVS8=pcxmono.dev pcxgray.dev pcx16.dev pcx256.dev pcx24b.dev pcxcmyk.dev
  158. DEVICE_DEVS9=pbm.dev pbmraw.dev pgm.dev pgmraw.dev pgnm.dev pgnmraw.dev pnm.dev pnmraw.dev ppm.dev ppmraw.dev
  159. DEVICE_DEVS10=tiffcrle.dev tiffg3.dev tiffg32d.dev tiffg4.dev tifflzw.dev tiffpack.dev
  160. DEVICE_DEVS11=tiff12nc.dev tiff24nc.dev
  161. DEVICE_DEVS12=psmono.dev psgray.dev bit.dev bitrgb.dev bitcmyk.dev
  162. DEVICE_DEVS13=pngmono.dev pnggray.dev png16.dev png256.dev png16m.dev
  163. DEVICE_DEVS14=jpeg.dev jpeggray.dev
  164. DEVICE_DEVS15=pdfwrite.dev
  165.  
  166. # Choose the language feature(s) to include.  See gs.mak for details.
  167.  
  168. FEATURE_DEVS=level2.dev pdf.dev
  169.  
  170. # Choose whether to compile the .ps initialization files into the executable.
  171. # See gs.mak for details.
  172.  
  173. COMPILE_INITS=0
  174.  
  175. # Choose whether to store band lists on files or in memory.
  176. # The choices are 'file' or 'memory'.
  177.  
  178. BAND_LIST_STORAGE=file
  179.  
  180. # Choose which compression method to use when storing band lists in memory.
  181. # The choices are 'lzw' or 'zlib'.  lzw is not recommended, because the
  182. # LZW-compatible code in Ghostscript doesn't actually compress its input.
  183.  
  184. BAND_LIST_COMPRESSOR=zlib
  185.  
  186. # Choose the implementation of file I/O: 'stdio', 'fd', or 'both'.
  187. # See gs.mak and sfxfd.c for more details.
  188.  
  189. FILE_IMPLEMENTATION=stdio
  190.  
  191. # Define the name table capacity size of 2^(16+n).
  192.  
  193. EXTEND_NAMES=0
  194.  
  195. # Define the platform name.
  196.  
  197. PLATFORM=openvms_
  198.  
  199. # Define the name of the makefile -- used in dependencies.
  200.  
  201. MAKEFILE=openvms.mak
  202.  
  203. # Define the platform options
  204.  
  205. PLATOPT=
  206.  
  207. # Patch a couple of PC-specific things that aren't relevant to OpenVMS builds,
  208. # but that cause `make' to produce warnings.
  209.  
  210. BGIDIR=***UNUSED***
  211. PCFBASM=
  212.  
  213. # It is very unlikely that anyone would want to edit the remaining
  214. #   symbols, but we describe them here for completeness:
  215.  
  216. # Define the suffix for command files (e.g., null or .bat).
  217.  
  218. CMD=
  219.  
  220. # Define the directory separator character (\ for MS-DOS, / for Unix,
  221. # nothing for OpenVMS).
  222.  
  223. D=
  224.  
  225. # Define the string for specifying the output file from the C compiler.
  226.  
  227. O=/OBJECT=
  228.  
  229. # Define the extension for executable files (e.g., null or .exe).
  230.  
  231. XE=.exe
  232.  
  233. # Define the extension for executable files for the auxiliary programs
  234. # (e.g., null or .exe).
  235.  
  236. XEAUX=.exe
  237.  
  238. # Define the list of files that `make begin' and `make clean' remove.
  239.  
  240. BEGINFILES=OPENVMS.OPT OPENVMS.COM
  241.  
  242. # Define the C invocation for the ansi2knr program.  We don't use this.
  243.  
  244. CCA2K=
  245.  
  246. # Define the C invocation for auxiliary programs (echogs, genarch).
  247. # We don't need to define this separately.
  248.  
  249. CCAUX=
  250.  
  251. # Define the compilation command for `make begin'.  We don't use this.
  252.  
  253. CCBEGIN=
  254.  
  255. # Define the C invocation for normal compilation.
  256.  
  257. CC=$(COMP)/OBJECT=$@ $<
  258.  
  259. # Define the Link invocation.
  260.  
  261. LINK=$(LINKER)/MAP/EXE=$@ $^,OPENVMS.OPT/OPTION
  262.  
  263. # Define the ANSI-to-K&R dependency.  We don't need this.
  264.  
  265. AK=
  266.  
  267. # Define the syntax for command, object, and executable files.
  268.  
  269. OBJ=obj
  270.  
  271. # Define the current directory prefix for image invocations.
  272.  
  273. EXPP=
  274. EXP=MCR []
  275.  
  276. # Define the current directory prefix for shell invocations.
  277.  
  278. SH=
  279. SHP=
  280.  
  281. # Define generic commands.
  282.  
  283. CP_=$$ @COPY_ONE
  284.  
  285. # Define the command for deleting (a) file(s) (including wild cards)
  286.  
  287. RM_=$$ @RM_ONE
  288.  
  289. # Define the command for deleting multiple files / patterns.
  290.  
  291. RMN_=$$ @RM_ALL
  292.  
  293. # Define the arguments for genconf.
  294.  
  295. CONFILES=-p %s -o $(ld_tr)
  296.  
  297. # Define the generic compilation rules.
  298.  
  299. .suffixes: .c .obj .exe
  300.  
  301. .c.obj:
  302.     $(CC)
  303.  
  304. .obj.exe:
  305.     $(LINK)
  306.  
  307. # ---------------------------- End of options ---------------------------- #
  308.  
  309.  
  310. # ------------------- Include the generic makefiles ---------------------- #
  311.  
  312. include version.mak
  313. include gs.mak
  314. include lib.mak
  315. include jpeg.mak
  316. include libpng.mak
  317. include zlib.mak
  318. include devs.mak
  319. include int.mak
  320.  
  321. # Define various incantations of the 'c' compiler.
  322.  
  323. CCC=$(COMP)/OBJECT=$@ 
  324. CCCF=$(CCC)
  325. CCCJ=$(CCC)/INCLUDE=($(JSRCDIR))
  326. CCCZ=$(CCC)/INCLUDE=($(ZSRCDIR))
  327. CCCP=$(CCC)/INCLUDE=($(ZSRCDIR),$(PSRCDIR))
  328. CCINT=$(CCC)
  329. CCLEAF=$(CCC)
  330.  
  331. # ----------------------------- Main program ------------------------------ #
  332.  
  333. $(GS_XE): openvms gs.$(OBJ) $(INT_ALL) $(LIB_ALL)
  334.     $(LINKER)/MAP/EXE=$@ gs.$(OBJ),$(ld_tr)/OPTIONS,OPENVMS.OPT/OPTION
  335.  
  336. # OpenVMS.dev
  337.  
  338. openvms__=gp_vms.$(OBJ) gp_nofb.$(OBJ)
  339. openvms_.dev: $(openvms__)
  340.     $(SETMOD) openvms_ $(openvms__)
  341.  
  342. # Interpreter AUX programs
  343.  
  344. $(ECHOGS_XE):  echogs.$(OBJ) 
  345. $(GENARCH_XE): genarch.$(OBJ)
  346. $(GENCONF_XE): genconf.$(OBJ)
  347. $(GENINIT_XE): geninit.$(OBJ)
  348.  
  349. # Preliminary definitions
  350.  
  351. openvms: openvms.com openvms.opt
  352.     $$ @OPENVMS
  353.  
  354. openvms.com: append_l.com
  355.     $$ @APPEND_L $@ "$$ DEFINE/JOB X11 $(X_INCLUDE)"
  356.     $$ @APPEND_L $@ "$$ DEFINE/JOB GS_LIB ''F$$ENVIRONMENT(""DEFAULT"")'"
  357.     $$ @APPEND_L $@ "$$ DEFINE/JOB GS_DOC ''F$$ENVIRONMENT(""DEFAULT"")'"
  358. ifeq "$(OPENVMS)" "VAX"
  359.     $$ @APPEND_L $@ "$$ DEFINE/JOB C$$INCLUDE ''F$$ENVIRONMENT(""DEFAULT"")', DECW$$INCLUDE, SYS$$LIBRARY"
  360.     $$ @APPEND_L $@ "$$ DEFINE/JOB VAXC$$INCLUDE C$$INCLUDE"
  361.     $$ @APPEND_L $@ "$$ DEFINE/JOB SYS SYS$$LIBRARY"
  362. else
  363.     $$ @APPEND_L $@ "$$ DEFINE/JOB DECC$$USER_INCLUDE ''F$$ENVIRONMENT(""DEFAULT"")', DECW$$INCLUDE, DECC$$LIBRARY_INCLUDE, SYS$$LIBRARY"
  364.     $$ @APPEND_L $@ "$$ DEFINE/JOB DECC$$SYSTEM_INCLUDE ''F$$ENVIRONMENT(""DEFAULT"")', DECW$$INCLUDE, DECC$$LIBRARY_INCLUDE, SYS$$LIBRARY"
  365.     $$ @APPEND_L $@ "$$ DEFINE/JOB SYS "DECC$$LIBRARY_INCLUDE,SYS$$LIBRARY"
  366. endif
  367.  
  368. openvms.opt:
  369. ifeq "$(OPENVMS)" "VAX"
  370.     $$ @APPEND_L $@ "SYS$$SHARE:VAXCRTL.EXE/SHARE"
  371. endif
  372. ifeq "$(DECWINDOWS)" "1.2"
  373.     $$ @APPEND_L $@ "SYS$$SHARE:DECW$$XMLIBSHR12.EXE/SHARE"
  374.     $$ @APPEND_L $@ "SYS$$SHARE:DECW$$XTLIBSHRR5.EXE/SHARE"
  375.     $$ @APPEND_L $@ "SYS$$SHARE:DECW$$XLIBSHR.EXE/SHARE"
  376. else
  377.     $$ @APPEND_L $@ "SYS$$SHARE:DECW$$XMLIBSHR.EXE/SHARE"
  378.     $$ @APPEND_L $@ "SYS$$SHARE:DECW$$XTSHR.EXE/SHARE"
  379.     $$ @APPEND_L $@ "SYS$$SHARE:DECW$$XLIBSHR.EXE/SHARE"
  380. endif
  381.     $$ @APPEND_L $@ ""Ident="""""GS $(GS_DOT_VERSION)"""""
  382.  
  383. # The platform-specific makefiles must also include rules for creating
  384. # certain dynamically generated files:
  385. #    gconfig_.h - this indicates the presence or absence of
  386. #        certain system header files that are located in different
  387. #        places on different systems.  (It could be generated by
  388. #        the GNU `configure' program.)
  389. #    gconfigv.h - this indicates the status of certain machine-
  390. #        and configuration-specific features derived from definitions
  391. #        in the platform-specific makefile.
  392.  
  393. gconfig_.h: $(MAKEFILE) $(ECHOGS_XE)
  394.     $(EXP)echogs -w gconfig_.h -x 23 define "HAVE_SYS_TIME_H"
  395.  
  396. gconfigv.h: $(MAKEFILE) $(ECHOGS_XE)
  397.     $(EXP)echogs -w gconfigv.h -x 23 define "USE_ASM" 0
  398.     $(EXP)echogs -a gconfigv.h -x 23 define "USE_FPU" 1
  399.     $(EXP)echogs -a gconfigv.h -x 23 define "EXTEND_NAMES" 0$(EXTEND_NAME)
  400.